<style>

*{  -webkit-user-select: none; /* Safari */
    -ms-user-select: none;      /* IE 10+ */
    user-select: none;          /* Általános */
}

body {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none;      /* IE 10+ */
    user-select: none;          /* Általános */
    margin: 0;
    font-family: "Garamond";
    background-color: #32313b;
}

header {

    position: relative;
    display: flex;
    justify-content: center;

    height: 75px;
    max-width: 1000px;
    background: linear-gradient(90deg,#AE8625 0%, #F7EF8A 64%, #D2AC47 100%);
    font-family: "Cormorant", "Garamond", serif;
    margin: 0px auto;
    margin-top: 0;
    margin-bottom: -10px;
    padding: 20px;
    padding-bottom: 5px;
    /*text-align: center;*/
    color: #09011b;
    font-size: xx-large;
}

    @media (max-width: 768px) {
        header {
            font-size: x-large;
        }
    }


header p {
margin-left: 30px;
margin-top: 5px;

}

img {

    max-width: 1040px;
    margin: -20px;


}

.container {
    max-width: 1041px;      /* azért 1041px mert néha a kép nem illeszkedik pontosan */
    margin: 20px auto;
    /*padding: 20px;*/
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 6px;
    line-height: 1.4;
    text-align: justify;
    font-size: large;

}

.container img {
  max-width: 100%; /* Hogy a kép ne lógjon ki a dobozból */
  margin: 0;
  
}

.container-text {
  padding: 2%;
}

h1 {
    color: rgb(235, 36, 46);
    /*text-shadow:
        -1px -1px 0 #000,  
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000;   */
    font-family: "Arial", sans-serif;
    font-size:x-large;
    font-weight: normal;
    margin-top: 20px;
}


h2 {
    font-weight: bold;
    font-family: "Cormorant", serif;
    font-size: 40px;
    margin-top: -10px;

}



h4 {
    display: inline-block;
    padding-bottom: 5px;
    font-weight: bold;
    font-style: italic;

}


footer {
    color:rgb(146, 153, 149);
    text-align: center;
}



.pic-box {
  /*border: 1px solid #ccc;*/
  /*padding: 10px;*/
  /*width: 90%;*/
  max-width: 937px;
   max-height: 90vh;
  /*max-width: 400px;  A doboz szélessége */
  margin: 20px auto;
  text-align: center;
  background-color: #fff;
}



.pic-box img {
  max-width: 100%; /* Hogy a kép ne lógjon ki a dobozból */
  height: auto;
  display: block;
  margin-bottom: 10px;
  margin-left: 0px;
  margin-top: 0px;
}

figcaption {
  margin-top: -7px;
  font-style: italic;
  /*font-size: 0.9em;*/
  /*color: #555;*/
}


.header-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Így a link láthatatlanul befedi a teljes relatív pozicionált headert */
}

header a {
    text-decoration: none; /* Eltávolítja az aláhúzást */
    color: inherit;        /* Átveszi a szülő elem színét (fekete/fehér stb.), így nem lesz kék */
}


</style>